home *** CD-ROM | disk | FTP | other *** search
/ Agent Central Host Computer / Agent - Central Host Computer.iso / _SETUP.1 / bitstat.sql < prev    next >
Text File  |  2000-05-12  |  961b  |  23 lines

  1. /* RCSVER $Id: bitstat.sql,v 1.1 1999-02-25 15:07:02-06 randy CURRENT $ */
  2. /* *************************************************************************
  3. *        Copyright (C) 1999, Agent Systems, Inc. All Rights Reserved.
  4. *
  5. * Name:        bitstat.sql 
  6. * Date:        02/23/1999
  7. * memo:        Randy Wood
  8. * Description:    Create the bitstat table. bitstat contains information       
  9. *        from the bitstat farebox record.
  10. * Changes:
  11. ************************************************************************* */
  12. CREATE TABLE bitstat
  13. (
  14.     det_seq_num    NUMBER(38)    /* pointer to mstrrec record */
  15.         CONSTRAINT ref1_bitstat REFERENCES mstrrec(det_seq_num),
  16.     farebox_glid    NUMBER(38),    /* Farebox ID from global_id */
  17.         conv_date       DATE,           /* Date for this record */
  18.     bit_id        NUMBER(38),    /* ID of checked bit */
  19.     valid_bit_cnt    NUMBER(38),    /* valid counts */
  20.     bad_bit_cnt    NUMBER(38),    /* invalid counts */
  21.     CONSTRAINT pk_bitstat PRIMARY KEY (det_seq_num)
  22. );
  23.